home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / network / serial / ppp / pppd_scr.0 / pppd_scr / uptest < prev   
Encoding:
Text File  |  1995-12-03  |  369 b   |  24 lines

  1. #! /bin/sh
  2.  
  3. # PPP-Script 1.0.0
  4. # Written by (Karsten Johansson) ksaj@ims.pcscav.com
  5. # Sat Dec 2, 1995
  6.  
  7. # Run this file as root every 5 minutes from cron.
  8.  
  9. (
  10. if ping -q -c 1 name.net
  11.    then
  12.       exit 0
  13.    else
  14.       if test -e /etc/ppp-down
  15.       then
  16.          exit 1
  17.       else
  18.             echo ppp restarted...
  19.             /etc/ppp/ppp-up
  20.       fi
  21. fi
  22. ) > /dev/null
  23.  
  24.